An HTML list style that produces bulleted lists of items.
COMPACT:
If present, COMPACT instructs the browser to render this list with only a minimal amount of leading between the lines (this reduces the amount of white space, and makes the listing more compact).
<UL> ... </UL> is legal within:
<BLOCKQUOTE> <BODY> <DD> <FORM> <LI>
The only markup that can be used within <UL> ... </UL> is <LI>.
To create bulleted lists of items where their order is not important, or where sequence does not apply.
<UL>
<LI>Bread
<LI>Milk
<LI>Peanut Butter
<LI>Lunch Meat
</UL>